home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
GNU
/
gawk_2_15_5.lha
/
gawk-2.15.5
/
alloca.ch
next >
Wrap
Text File
|
1995-01-20
|
621b
|
34 lines
Changes for ALLOCA.C by Andreas Scherer, January 20, 1995.
@x l.54
#define NULL 0 /* null pointer constant */
extern void free();
extern pointer xmalloc();
extern int write();
extern void exit();
@y
#include <stdlib.h>
extern pointer xmalloc(int);
extern int write(int, const void *, unsigned int);
@z
@x l.85
find_stack_direction (/* void */)
@y
find_stack_direction (void)
@z
@x l.141
alloca (size) /* returns pointer to storage */
unsigned size; /* # bytes to allocate */
@y
alloca ( /* returns pointer to storage */
unsigned size) /* # bytes to allocate */
@z
@x l.198
char *malloc();
@y
@z